Package-level declarations

Types

Link copied to clipboard

An ExoPlayer with a few extra APIs for interacting with Mux Video (TODO: link?) This player also integrates transparently with Mux Data (TODO: link?)

Functions

Link copied to clipboard
fun <Any> allEqual(vararg these: Any): Boolean

Return true if all elements in the given set are equal

Link copied to clipboard
fun Int.clamp(min: Int, max: Int): Int

Clamps an integer between the given min and max

Link copied to clipboard
fun convertPxToDp(px: Int, displayDensity: Float): Int

Convert from a raw pixel dimension to a density-independent (dip) dimension

Link copied to clipboard
inline fun <T> T.logTag(): String

Gets a Log Tag from the name of the calling class. Can be used in any package that isn't obfuscated (such as muxstats)

Link copied to clipboard
fun <Any> Any.noneOf(vararg these: Any): Boolean

Returns true if the receiver is not in the given objects.

Link copied to clipboard
fun <Any> Any.oneOf(vararg these: Any): Boolean

Returns true if the receiver is not in the given objects.